设置偏移

将视图从其默认位置沿 x 和 y 方向偏移指定的距离。

类型

1offset?: {
2  x: number
3  y: number
4}

示例

1<Text 
2  offset={{
3    x: 10,
4    y: -20
5  }}
6>偏移内容</Text>